1. Virtuemart: /components/com_virtuemart/views/productdetails/tmpl/{your template, e.g. default.php}
	
	Find the following row at the beginning of the file:
	
		defined ( '_JEXEC' ) or die ( 'Restricted access' );
	
	Add the following code below it:

		if (JPluginHelper::importPlugin('content','mailorder',true)) {
			$seoparams = new JRegistry();
			$seorow = new StdClass();
			$seorow->id = $this->product->virtuemart_product_id;
			$seorow->catid = $this->product->virtuemart_category_id;
			$seorow->text = $this->product->product_s_desc .'@!@'.$this->product->product_desc;
			JDispatcher::getInstance()->trigger('plgMailOrderInvoke', array('virtuemart.product', $seorow, $seoparams));
			list($this->product->product_s_desc, $this->product->product_desc) = explode('@!@', $seorow->text);
		}

2. MOSETS TREE

	a) Go to:
	
		Administrator => Mosets Tree => Custom Fields => Description
	
	and turn the Strip HTML Tags parameters OFF, then enclose the Mailorder tag in a hidden <span>, e.g.:
		
		<span style="display:none">{mailorder formtpl=default buy=1}</span>
	
	If you don't take these steps the Mailorder tag will remain visible as Mosets Tree ignores all the changes made by the content
	plugins, hence the MicroformatsVotes plugin is unable to remove it from the listings description field.
	
	b) 	
		1. Open /components/com_mtree/templates/m2/sub_listingDetails.tpl.php or other relevant template
		2. Add the following code at the exact place you want the Mailorder link to be displayed, e.g. immediately after the </h2> tag:
		
			<?
				#Mailorder BOM
				if (JPluginHelper::importPlugin('content','mailorder',true)) {
					$seoparams = new JRegistry();
					JDispatcher::getInstance()->trigger('plgMailOrderInvoke', array('_com_mtree.listing', $this->link, $seoparams));
					echo $this->link->mailorderlink;
					unset($this->link->mailorderlink);
				}
				#Mailorder EOM
			?>
	
	If you want all the listings to come with a Mailorder link, modify the above code like this:
	
			<?
				#Mailorder BOM
				if (JPluginHelper::importPlugin('content','mailorder',true)) {
					$seoparams = new JRegistry();
					$this->link->link_desc .= '<span style="display:none">{mailorder formtpl=default buy=1}</span>';
					JDispatcher::getInstance()->trigger('plgMailOrderInvoke', array('_com_mtree.listing', $this->link, $seoparams));
					echo $this->link->mailorderlink;
					unset($this->link->mailorderlink);
				}
				#Mailorder EOM
			?>